home *** CD-ROM | disk | FTP | other *** search
- /*
- * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIAccessibleHyperText.idl
- */
-
- #ifndef __gen_nsIAccessibleHyperText_h__
- #define __gen_nsIAccessibleHyperText_h__
-
-
- #ifndef __gen_nsISupports_h__
- #include "nsISupports.h"
- #endif
-
- #ifndef __gen_nsIAccessibleHyperLink_h__
- #include "nsIAccessibleHyperLink.h"
- #endif
-
- /* For IDL files that don't want to include root IDL files. */
- #ifndef NS_NO_VTABLE
- #define NS_NO_VTABLE
- #endif
-
- /* starting interface: nsIAccessibleHyperText */
- #define NS_IACCESSIBLEHYPERTEXT_IID_STR "8f18d922-1dd2-11b2-82ea-829b78a44413"
-
- #define NS_IACCESSIBLEHYPERTEXT_IID \
- {0x8f18d922, 0x1dd2, 0x11b2, \
- { 0x82, 0xea, 0x82, 0x9b, 0x78, 0xa4, 0x44, 0x13 }}
-
- class NS_NO_VTABLE nsIAccessibleHyperText : public nsISupports {
- public:
-
- NS_DEFINE_STATIC_IID_ACCESSOR(NS_IACCESSIBLEHYPERTEXT_IID)
-
- /* readonly attribute long links; */
- NS_IMETHOD GetLinks(PRInt32 *aLinks) = 0;
-
- /* nsIAccessibleHyperLink getLink (in long index); */
- NS_IMETHOD GetLink(PRInt32 index, nsIAccessibleHyperLink **_retval) = 0;
-
- /* long getLinkIndex (in long charIndex); */
- NS_IMETHOD GetLinkIndex(PRInt32 charIndex, PRInt32 *_retval) = 0;
-
- /* long getSelectedLinkIndex (); */
- NS_IMETHOD GetSelectedLinkIndex(PRInt32 *_retval) = 0;
-
- };
-
- /* Use this macro when declaring classes that implement this interface. */
- #define NS_DECL_NSIACCESSIBLEHYPERTEXT \
- NS_IMETHOD GetLinks(PRInt32 *aLinks); \
- NS_IMETHOD GetLink(PRInt32 index, nsIAccessibleHyperLink **_retval); \
- NS_IMETHOD GetLinkIndex(PRInt32 charIndex, PRInt32 *_retval); \
- NS_IMETHOD GetSelectedLinkIndex(PRInt32 *_retval);
-
- /* Use this macro to declare functions that forward the behavior of this interface to another object. */
- #define NS_FORWARD_NSIACCESSIBLEHYPERTEXT(_to) \
- NS_IMETHOD GetLinks(PRInt32 *aLinks) { return _to GetLinks(aLinks); } \
- NS_IMETHOD GetLink(PRInt32 index, nsIAccessibleHyperLink **_retval) { return _to GetLink(index, _retval); } \
- NS_IMETHOD GetLinkIndex(PRInt32 charIndex, PRInt32 *_retval) { return _to GetLinkIndex(charIndex, _retval); } \
- NS_IMETHOD GetSelectedLinkIndex(PRInt32 *_retval) { return _to GetSelectedLinkIndex(_retval); }
-
- /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
- #define NS_FORWARD_SAFE_NSIACCESSIBLEHYPERTEXT(_to) \
- NS_IMETHOD GetLinks(PRInt32 *aLinks) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLinks(aLinks); } \
- NS_IMETHOD GetLink(PRInt32 index, nsIAccessibleHyperLink **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLink(index, _retval); } \
- NS_IMETHOD GetLinkIndex(PRInt32 charIndex, PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLinkIndex(charIndex, _retval); } \
- NS_IMETHOD GetSelectedLinkIndex(PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelectedLinkIndex(_retval); }
-
- #if 0
- /* Use the code below as a template for the implementation class for this interface. */
-
- /* Header file */
- class nsAccessibleHyperText : public nsIAccessibleHyperText
- {
- public:
- NS_DECL_ISUPPORTS
- NS_DECL_NSIACCESSIBLEHYPERTEXT
-
- nsAccessibleHyperText();
-
- private:
- ~nsAccessibleHyperText();
-
- protected:
- /* additional members */
- };
-
- /* Implementation file */
- NS_IMPL_ISUPPORTS1(nsAccessibleHyperText, nsIAccessibleHyperText)
-
- nsAccessibleHyperText::nsAccessibleHyperText()
- {
- /* member initializers and constructor code */
- }
-
- nsAccessibleHyperText::~nsAccessibleHyperText()
- {
- /* destructor code */
- }
-
- /* readonly attribute long links; */
- NS_IMETHODIMP nsAccessibleHyperText::GetLinks(PRInt32 *aLinks)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* nsIAccessibleHyperLink getLink (in long index); */
- NS_IMETHODIMP nsAccessibleHyperText::GetLink(PRInt32 index, nsIAccessibleHyperLink **_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* long getLinkIndex (in long charIndex); */
- NS_IMETHODIMP nsAccessibleHyperText::GetLinkIndex(PRInt32 charIndex, PRInt32 *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* long getSelectedLinkIndex (); */
- NS_IMETHODIMP nsAccessibleHyperText::GetSelectedLinkIndex(PRInt32 *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* End of implementation class template. */
- #endif
-
-
- #endif /* __gen_nsIAccessibleHyperText_h__ */
-